home *** CD-ROM | disk | FTP | other *** search
- -- card: 41262 from stack: in
- -- bmap block id: 0
- -- flags: 0000
- -- background id: 4755
- -- name:
-
-
- -- part 1 (field)
- -- low flags: 00
- -- high flags: 0007
- -- rect: left=30 top=78 right=296 bottom=478
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 4
- -- text size: 9
- -- style flags: 0
- -- line height: 12
- -- part name:
-
-
- -- part contents for card part 1
- ----- text -----
- ----------------------------- TC version --------------------------
-
-
- /*
- * FILE: student.h
- * AUTHOR: R.G.
- * CREATED: June 25, 1990
- *
- * header for Student class
- */
-
- # define _H_student
- # include "person.h"
-
- /******************************************************************
- * derive Student class from Person
- ******************************************************************/
- struct Student:Person
- {
- int student_num;
-
- void set(void);
- void print(void);
- };
-
-
- ---------------------------- C++ version --------------------------
-
-
- /*
- * FILE: student.h
- * AUTHOR: R.G.
- * CREATED: June 25, 1990
- *
- * header for Student class
- */
-
- # ifndef student_h
- # define student_h
- # include "person.h"
-
- /******************************************************************
- * derive Student class from Person
- ******************************************************************/
- struct Student:Person
- {
- int student_num;
-
- void set(void);
- void print(void);
- };
-
- # endif
-
-
-
- -- part contents for background part 7
- ----- text -----
- 135
-
- -- part contents for background part 4
- ----- text -----
- File 5 of 7: